home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000328_news@columbia.edu _Tue Jan 23 10:54:13 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id KAA13486 for <kermit.misc@watsun>; Tue, 23 Jan 1996 10:54:11 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id KAA11637 for kermit.misc@watsun; Tue, 23 Jan 1996 10:54:06 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: two machine "network" using tcp/ip
  8. Date: 23 Jan 1996 15:53:57 GMT
  9. Organization: Columbia University
  10. Lines: 65
  11. Message-ID: <4e30al$bbd@apakabar.cc.columbia.edu>
  12. References: <4cip39$9t5@hippo.shef.ac.uk> <4daegb$j0k@Mercury.mcs.com> <4dpapc$gce@saturn.ball.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4dpapc$gce@saturn.ball.com>, John Wehner <jwehner@ball.com> wrote:
  16. : In article <4daegb$j0k@Mercury.mcs.com>, les@MCS.COM says...
  17. : >
  18. : >In article <4cip39$9t5@hippo.shef.ac.uk>,
  19. : >Earl H. Kinmonth <cck@kuso.shef.ac.uk> wrote:
  20. : > . . .  With WFW, I don't think
  21. : >there is any way to run kermit with the native tcp, but it doesn't
  22. : >matter much since . . . . 
  23. : Does this mean I can't run kermit if I am useing WFW?
  24. : I am on a network at work running WFW.
  25. : I want to be able to transfer files from other systems I telnet to.
  26. No, it does not mean you can't run Kermit if you are using WFW.
  27. MS-DOS Kermit 3.14 comes with a file, NETWORKS\SETUP.DOC, that explains
  28. how to do it.  Quoting from Chapter 8 of that file:
  29.  
  30. Steps to follow after installing network support in WFW v3.11.    This presumes
  31. that WFW owns the network adapter (Situation 1 above).
  32.  
  33. 1. Ensure that both PROTMAN.EXE and PROTMAN.DOS are in the WFW directory.
  34.    You may have to uncompress them from the WFW distribution media.  Copy 
  35.    files DIS_PKT9.DOS and WINPKT.COM there too.
  36.  
  37. 2. Edit PROTOCOL.INI to insert the [pktdrv] section as shown below.
  38.    Changes to the intvec= and novell= lines are permitted.  An NE2000 
  39.    NDIS v2 board driver, MS$NE2000, is used in this example:
  40.  
  41.     [pktdrv]
  42.     DriverName=PKTDRV$
  43.     bindings=MS$NE2000
  44.     intvec=0x63
  45.     novell=no
  46.  
  47. 3. Edit SYSTEM.INI [network drivers] section to add ",DIS_PKT9.DOS" to the 
  48.    transport= line, and to ensure an NDIS v2 netcard= driver has been given. 
  49.    Please do not confuse this transport= line with a similar one in the 
  50.    [enhanced] section; the [enhanced] section refers to 32-bit protected 
  51.    mode material.  An NE2000 board is used in this example.
  52.  
  53.     [network drivers]
  54.     devdir=C:\WFW
  55.     LoadRMDrivers=Yes
  56.     transport=ndishlp.sys,*netbeui,dis_pkt9.dos
  57.     netcard=ne2000.dos
  58.  
  59. 4. Before starting Windows issue DOS commands (once only)
  60.  
  61.     NET START
  62.     WINPKT \x060 0x63        (example interrupts)
  63.  
  64.    The first command energizes the NDIS V2 handlers, and the DIS_PKT9 banner
  65.    should be displayed ending with the Ethernet address of your board.    NET.EXE
  66.    is in the WFW directory; also see next paragraph.  The second command starts
  67.    Windows helper shim WINPKT, and that needs the Packet Driver (DIS_PKT9)
  68.    active beforehand.
  69.    
  70.    A comment on the line "LoadRMDrivers=Yes."  NET START reads file SYSTEM.INI
  71.    to obtain loading information, and the answer "Yes" tells it to run
  72.    PROTMAN.EXE that loads the drivers with PROTOCOL.INI supplying details.  If
  73.    the answer were "No" then the Real Mode (RM) drivers would not be loaded or
  74.    available.  However, if "No" were stated then we could give command NET
  75.    START NETBIND to run PROTMAN.EXE and get the same results as the "Yes" case.
  76.  
  77. - Frank